customizing what files to keep under version control ? [svn]
Posted
by Neeraj
on Stack Overflow
See other posts from Stack Overflow
or by Neeraj
Published on 2010-03-22T12:38:04Z
Indexed on
2010/03/22
12:41 UTC
Read the original article
Hit count: 275
svn
|version-control
Recently, I checked out a copy of a project, There were multiple source files and a manual makefile based build system.
I did this
svn status
No output // meaning . is a working copy
make
// created a lot of *.o files
svn status
No change
How come this is possible? This clearly suggests there be some wildcard way to customize the files under version control? How can I do that?s
© Stack Overflow or respective owner